001    /**
002     * Created by IntelliJ IDEA.
003     * User: Wei Wang
004     * Date: Apr 12, 2003
005     * Time: 11:27:40 PM
006     */
007    
008    package EVolve.exceptions;
009    
010    public class ReadConfigureFileException extends EVolveException{
011        public ReadConfigureFileException(String filename, String lineno, String detail) {
012            super("Error occurred when parsing configure file:\n " + "\"" + filename +"\"\n" +
013                  "Line no: " + lineno+ ".\n\n" +
014                  detail);
015        }
016    }